home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Freeware
/
Griffith 0.9.8
/
griffith-0.9.8-win32.exe
/
{app}
/
lib
/
plugins
/
movie
/
PluginMovieOnet.py
< prev
next >
Wrap
Text File
|
2008-11-17
|
5KB
|
162 lines
# -*- coding: utf-8 -*-
__revision__ = '$Id: PluginMovieOnet.py 1040 2008-11-15 21:13:49Z mikej06 $'
# Copyright (c) 2005-2006 Piotr O┬┐arowski
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
# You may use and distribute this software under the terms of the
# GNU General Public License, version 2 or later
import gutils
import movie,string
plugin_name = 'Onet'
plugin_description = 'Onet Film'
plugin_url = 'film.onet.pl'
plugin_language = _('Polish')
plugin_author = 'Piotr O┬┐arowski'
plugin_author_email = '<ozarow+griffith@gmail.com>'
plugin_version = '1.7'
class Plugin(movie.Movie):
def __init__(self, id):
self.encode = 'iso-8859-2'
self.movie_id = id
self.url = "http://film.onet.pl/%s" % str(self.movie_id)
def get_image(self):
self.movie_id = '' # problems with decoding polish characters in UTF8 => forget ID
self.image_url = ''
pos = string.find(self.page, 'alt="Galeria" border=1 src="')
if pos > 0:
self.image_url = "http://film.onet.pl/%s" % gutils.trim(self.page[pos:], 'src="', '"')
return
pos = string.find(self.page, 'IMG class=pic alt=\"Plakat"')
if pos > 0:
self.image_url = "http://film.onet.pl/%s" % gutils.trim(self.page[pos:], 'src="', '">')
def get_o_title(self):
self.o_title = gutils.trim(self.page, 'class=a2 valign=top width="100%"><B>', '</B>')
if self.o_title == '':
self.o_title = self.get_title(True)
def get_title(self, ret=False):
data = gutils.trim(self.page, '<TITLE>', ' - Onet.pl Film</TITLE>')
if ret is True:
return data
else:
self.title = data
def get_director(self):
self.director = gutils.trim(self.page, '<BR>Re\xbfyseria: ', '<BR>')
if string.find(self.director, '-->') <> -1:
self.director = gutils.after(self.director, '-->')
self.director = gutils.before(self.director,"<!--")
else:
self.director = gutils.after(self.director, '<B>')
self.director = gutils.before(self.director, '</B>')
def get_plot(self):
pos = string.find(self.page, '<TD class=tym>Tre\xb7\xe6</TD>')
if pos > 0:
self.plot = self.page[pos:]
self.plot = gutils.trim(self.plot, '<DIV class=a2>', '</DIV>')
return
pos = string.find(self.page, '>Recenzje</FONT> ')
if pos > 0:
self.plot = self.page[pos:]
self.plot = gutils.trim(self.plot, '<TD class=a1 colspan=3>', '<A class="ar" ')
else:
self.plot = ''
def get_year(self):
self.year = gutils.trim(self.page, 'class=a2 valign=top width="100%">',')<BR>')
self.year = gutils.after(self.year, '</B> (')
self.year = gutils.after(self.year, ', ')
def get_runtime(self):
self.runtime = gutils.trim(self.page, 'color="#666666">czas ',' min.')
def get_genre(self):
self.genre = gutils.trim(self.page, 'class=a2 valign=top width="100%">', '<BR><SPAN class=a1>')
self.genre = gutils.after(self.genre, '<BR>')
def get_cast(self):
self.cast = "<%s" % gutils.trim(self.page,'#FF7902">Obsada<', '<DIV ')
self.cast = string.replace(self.cast, '</A> - ', _(' as '))
self.cast = string.replace(self.cast, '<A class=u ', "\n<a ")
self.cast = string.strip(gutils.strip_tags(self.cast))
self.cast = self.cast[18:]
def get_classification(self):
self.classification = ''
def get_studio(self):
self.studio = ''
def get_o_site(self):
self.o_site = ''
def get_site(self):
self.site = self.url
def get_trailer(self):
self.trailer = ''
def get_country(self):
self.country = gutils.trim(self.page, 'class=a2 valign=top width="100%">', ')<BR>')
self.country = gutils.after(self.country,"(")
self.country = gutils.before(self.country,",")
def get_rating(self):
self.rating = gutils.trim(self.page, '>Ocena filmu</TD>', 'g\xb3os\xf3w)')
self.rating = gutils.after(self.rating, '<BR><B>')
self.rating = gutils.before(self.rating, '/5</B>')
if self.rating != '':
self.rating = str( float(self.rating)*2 )
def get_notes(self):
self.notes = ''
class SearchPlugin(movie.SearchMovie):
def __init__(self):
self.encode = 'iso-8859-2'
self.original_url_search = 'http://film.onet.pl/filmoteka.html?O=0&S='
self.translated_url_search = 'http://film.onet.pl/filmoteka.html?O=1&S='
def search(self,parent_window):
self.open_search(parent_window)
self.page = gutils.trim(self.page, '>Wynik wyszukiwania<', '<TABLE border=0 cellpadding=0');
self.page = gutils.after(self.page, '</SPAN></DIV><BR>');
return self.page
def get_searches(self):
elements = string.split(self.page, ' class=pic')
self.number_results = elements[-1]
if (elements[0]<>''):
for element in elements:
self.ids.append(gutils.trim(element, 'class=a2 width="100%"><A href="','" class=u'))
element = gutils.trim(element, 'class=u><B>', '</B>')
element = gutils.strip_tags(element)
self.titles.append(element)
else:
self.number_results = 0
# vim: fenc=iso-8859-2